home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1997 #3 / Amiga Plus CD - 1997 - No. 03.iso / pd / programmierung / vbcc / machines / amiga68k / libsrc / math / difftime.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-13  |  87 b   |  7 lines

  1. #include <time.h>
  2.  
  3. #undef difftime
  4.  
  5. double difftime(time_t a,time_t b)
  6. { return a-b; }
  7.